@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background-image: linear-gradient(
    to right,
    #fdcb1b,
    #e07b45,
    #b03f63,
    #661476,
    #120079
  );
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

#container {
  margin: 0 auto;
  display: flex;

  justify-content: center;
  align-items: center;
}
.wrapper {
  background-color: #120079;
  width: 50%;
  display: flex;
  height: 100%;
  justify-content: center;
  background: #d3d3d385;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
.modal-title {
  color: #323232;
}
.p-modal {
  color: #32cd32;
}
.h1-cadastro {
  color: #fff;
}
#form {
  /* background-color: #661476; */
  display: flex;
  align-items: center;
  flex-direction: column;
}
.input-box {
  height: 100%;
  border: none;
  outline: none;
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
}
.input-box input {
  width: 100%;
  border: 1px solid;
  height: 5vh;
  border-radius: 20px;
}
.input-box label {
  margin-top: 15px;
  font-size: 1.4rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.input-box input::placeholder {
  color: #fff;
}

.input-box i {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.remember-forgot {
  margin-top: 20px;
  margin-bottom: 20px;
}
.remember-forgot a:hover {
  text-decoration: underline;
}

.wrapper .btn {
  width: 75%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.wrapper .register-link {
  font-size: 14.5px;
  text-align: center;
  margin-top: 20px;
}

.error {color:red;}

/* .register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
} */
